I want to update the Kth value of the heap.
I want to update the Kth value of the heap.
-> rewrite, then _siftdown can be used to return to heap state with O(logN)
However, this K is not the Kth in the sort order, so it is not useful. If you want to update an arbitrary value, it takes O(N) to find where that value is in the list.
For example, if you want to "update the second largest value," you can use K=1,2, which is determined by comparing the two locations. I think so.
code:python
from heapq import _siftdown
K = 1
_siftdown(queue, 0, K)
---
This page is auto-translated from /nishio/ヒープのK番目の値を更新したい. If you looks something interesting but the auto-translated English is not good enough to understand it, feel free to let me know at @nishio_en. I'm very happy to spread my thought to non-Japanese readers.